Description
Used to symbolize point features using TrueType symbols.
Diagram
Overview
|
|
character required Restriction of xs:int
Text character ASCII value. The character must be a value between 32 and 255 in a font's character map; characters 0-31 are nonprintable and cannot be used.
|
|
angle optional Restriction of xs:double
Angle of rotation in degrees.
|
|
font optional xs:string
Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic.
|
|
fontcolor optional xs:string
Font color.
|
|
fontsize optional Restriction of xs:int
Font size.
|
|
fontstyle optional Restriction of xs:string
Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
character | Restriction of xs:int | required | | | Text character ASCII value. The character must be a value between 32 and 255 in a font's character map; characters 0-31 are nonprintable and cannot be used. |
angle | Restriction of xs:double | optional | 0.0 | | Angle of rotation in degrees. |
font | xs:string | optional | | | Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic. |
fontcolor | xs:string | optional | | | Font color. |
fontsize | Restriction of xs:int | optional | | | Font size. |
fontstyle | Restriction of xs:string | optional | regular | | Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline") |
Examples
Source
<xs:element name="TRUETYPEMARKERSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to symbolize point features using TrueType symbols.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="character" use="required">
<xs:annotation>
<xs:documentation>Text character ASCII value. The character must be a value between 32 and 255 in a font's character map; characters 0-31 are nonprintable and cannot be used.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="32" />
<xs:maxInclusive value="255" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="0" ref="angle">
<xs:annotation>
<xs:documentation>Angle of rotation in degrees.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="font">
<xs:annotation>
<xs:documentation>Font name. The name is case sensitive.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="fontcolor" default="0,0,0" />
<xs:attribute ref="fontsize">
<xs:annotation>
<xs:documentation>Font size.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="regular" ref="fontstyle">
<xs:annotation>
<xs:documentation>Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also